home *** CD-ROM | disk | FTP | other *** search
/ The Java 3D API Specification (2nd Edition) / The Java 3D API Specification (2nd Edition).iso / programs / examples / FourByFour / Canvas2D.java < prev    next >
Text File  |  2000-04-28  |  3KB  |  79 lines

  1. /*
  2.  *    @(#)Canvas2D.java 1.5 00/02/10 13:13:48
  3.  *
  4.  * Copyright (c) 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
  7.  * modify and redistribute this software in source and binary code form,
  8.  * provided that i) this copyright notice and license appear on all copies of
  9.  * the software; and ii) Licensee does not utilize the software in a manner
  10.  * which is disparaging to Sun.
  11.  *
  12.  * This software is provided "AS IS," without a warranty of any kind. ALL
  13.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
  14.  * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
  15.  * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
  16.  * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
  17.  * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
  18.  * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
  19.  * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
  20.  * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
  21.  * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
  22.  * POSSIBILITY OF SUCH DAMAGES.
  23.  *
  24.  * This software is not designed or intended for use in on-line control of
  25.  * aircraft, air traffic, aircraft navigation or aircraft communications; or in
  26.  * the design, construction, operation or maintenance of any nuclear
  27.  * facility. Licensee represents and warrants that it will not use or
  28.  * redistribute the Software for such purposes.
  29.  */
  30.  
  31. import java.awt.*;
  32. import java.awt.event.*;
  33. import java.awt.image.*;
  34.  
  35. /**
  36.  * Class:       Canvas2D
  37.  *
  38.  * Description: Used to respond to mouse events in the 2D window.
  39.  *
  40.  * Version:     1.0
  41.  *
  42.  */
  43. class Canvas2D extends Canvas implements MouseListener {
  44.  
  45.    Image backbuffer;          // Backbuffer image
  46.    Graphics gc;               // Graphics context of backbuffer
  47.    Board board;               // Game board
  48.  
  49.    Canvas2D(Board board) {
  50.       this.board = board;
  51.    }
  52.  
  53.    public void setBuffer(Image backbuffer) {
  54.       this.backbuffer = backbuffer;
  55.       gc = backbuffer.getGraphics();
  56.    }
  57.  
  58.    public void update(Graphics g) {
  59.       paint(g);
  60.    }
  61.  
  62.    public void paint(Graphics g) {
  63.       if (board != null) {
  64.          board.render2D(gc);
  65.          g.drawImage(backbuffer, 0, 0, this);
  66.       }
  67.    }
  68.  
  69.    public void mousePressed(MouseEvent e) {
  70.       board.checkSelection2D(e.getX(), e.getY(), 1);
  71.       repaint();
  72.    }
  73.  
  74.    public void mouseClicked(MouseEvent  e) {}
  75.    public void mouseReleased(MouseEvent e) {}
  76.    public void mouseEntered(MouseEvent  e) {}
  77.    public void mouseExited(MouseEvent   e) {}
  78. }
  79.